home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Info / For Developers / Smile1.6.6.sea / Smile1.6.6 / Smile ƒ / Help files / Button example 3 < prev    next >
Text File  |  1999-08-03  |  2KB  |  47 lines

  1. Button example 3
  2.  
  3.  
  4. Please be sure that you are familiar with  Button Example 1 before proceeding with Example 3 of this section. 
  5.  
  6.  
  7. Custom Button Example 3 - Enter key
  8.  
  9. Another example is presented that can be used with the "Empty" button. This script results in a button that will take the place of the Enter key. It can be used on computers that are not equipped with Enter keys, or it can be installed on a text window simply for convenience. 
  10.  
  11. Note : you can alternately use the combination ctrl-C as a substitute to the Enter key.
  12.  
  13. Note : this button script requires that Sigma’s Additions (osax) be installed in the "HD: System Folder: Extensions: Scripting Additions folder." At the time of the writing of this help file, this osax could be obtained at : 
  14.  
  15. http://home.earthlink.net/~eagrant/Sigmas-Additions.sit.hqx -
  16.  
  17. The script : 
  18.  
  19. ----------------------------
  20. on mouseUp(theButton)
  21.     type text (ASCII character 3) --( ASCII character 3) for Enter key
  22.     set name of theButton to "Enter-key" 
  23. end mouseUp
  24. ----------------------------
  25.  
  26. Follow these steps to try the above script.
  27.  
  28. 1. -click on "Empty Button" to open to its script window. 
  29.  
  30. 2. Enter the script as follows. (Retype, use copy and paste, or drag-and-drop.) 
  31.  
  32. ----------------------------
  33. on mouseUp(theButton)
  34. (Your custom script or Examples)
  35. end mouseUp 
  36. ----------------------------
  37.  
  38. 3. Press Enter to compile if you have an Enter-key. (If you do not have an Empty-key, skip this step and proceed directly to Step 4.) 
  39.  
  40. 4. Close the "Empty Button" script window and click "Yes" from the dialog box. 
  41.  
  42. Run the script by clicking on the button. The button name will change from "Empty button" to "Enter-key."  Clicking this button  produces the same result as pressing the Enter-key. 
  43.  
  44. If you would like to change the name of the button, you could change script (line 3), or see button for additional information. 
  45.  
  46. ========================================================
  47.